home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #2
/
Amiga Plus CD - 2004 - No. 02.iso
/
AmiSoft
/
Hard
/
drivr
/
PoseidonMain.lha
/
Poseidon
/
Poseidon-Install
< prev
next >
Wrap
Text File
|
2003-12-29
|
40KB
|
1,096 lines
;--------------------------------------------------------------------------
; $VER: Poseidon Install V1.8 (13-Dec-03).
;
; Copyright ©2002-2003 Chris Hodges. All rights reserved.
;--------------------------------------------------------------------------
(delopts "force" "askuser" "nofail")
;--------------------------------------------------------------------------
; Flexible installer script! So get our installation environment.
;--------------------------------------------------------------------------
(set #home @execute-dir)
(set #instdatadir "InstallData")
;--------------------------------------------------------------------------
; Error cleanup code.
;--------------------------------------------------------------------------
(onerror
(
(if (> @ioerr 0)
(message (cat #ioerror "\n\n ERROR CODE: " @ioerr))
)
)
)
;--------------------------------------------------------------------------
; English Installer Strings
;--------------------------------------------------------------------------
(if (= @language "english")
(
(set #lang 1)
(set #suffix "_E")
(set @default-dest "all over the place")
(set #licence "Licence.txt")
(set #ioerror "An error occured during the installation, please report it to me.\n\nThanks.")
(set #updateinstaller
(cat "\n"
"Just to let you know ESCOM AG has released a new version of the installer program."
"\n\nVersion 43.3 can be found on Aminet in:\n\n/util/misc/Installer-43_3.lha\n\n"
"You might want to upgrade soon, if you can, especially if you encounter problems "
"during this installation."
)
)
(set #lhaerr
(cat
"Sorry, couldn't extract installation data!\n"
"Please install Lha / LhEX."
)
)
(set #intro
(cat "\n"
("Welcome to the installation program for the\nPoseidon USB Stack V%d.%d\n"
(getversion (tackon #instdatadir "Libs/poseidon.library")))
"by Chris Hodges <hodges@in.tum.de>"
"\n\nPlease read the Licence before proceeding.\n"
"Continuing on the Installation means you have read and accepted the Licence conditions!\n\n"
)
)
(set #extro
(cat "\n"
"All Poseidon files installed. Enjoy!\n\n"
"The first thing is to read the manual (in the HELP: directory). After "
"that, load up Trident that can be found in your Prefs drawer."
)
)
(set #copybonus
(cat "\n"
"There is some bonus material in the \"Extra\" drawer, such as fat95 by "
"Torsten Jager, MasonIcons by Martin Merz, and the original "
"LoadModule archive by Torbjörn Andersson. All archives are included with "
"permission. "
"NOTE: The bonus material is included 'as-is' and neither I nor the authors "
"of these products give warrenties of any kind.\n\n"
"Do you want to unpack these files now?"
)
)
(set #copybonus_help "This is optional. You can unpack these archives later aswell.")
(set #copybonusdir "Select target directory (preferably RAM:):")
(set #copybonusdir_help "This is the location, where the extra files will be unpacked to.")
(set #askmorphos "Do you want to install the PPC native binaries for MorphOS aswell?")
(set #askmorphos_help "If your system is not running MorphOS, you can skip this part.")
(set #copymainlib "Copying main Poseidon library file...\n")
(set #copymainlib_help "\nThis is the main Poseidon stack library. Without it, nothing will work.")
(set #copyhwdrivers "Select the USB hardware drivers you want to install:\n")
(set #copyhwdrivers_help
(cat "\n"
"These are the hardware-dependent USB controller drivers available. Select your "
"USB hardware controller. Poseidon will not work without the correct hardware "
"controller driver."
)
)
(set #copyclasses "Select the USB class drivers you want to install:\n")
(set #copyclasses_help
(cat "\n"
"Class drivers are the software that automatically enables the features of "
"the devices you plug onto the USB. If you don't know, which device will need "
"which class driver, just copy them all, there's no harm done. "
)
)
(set #copydocs "Copying manual...\n")
(set #copydocs_help
(cat "\n"
"As there is no actual installation directory, the docs will be "
"installed in your HELP: directory."
)
)
(set #copygui "Copying Trident (GUI)...\n")
(set #copygui_help
(cat "\n"
"Trident is a graphical user interface to configure your USB setup. "
"A good place to store this program is your Prefs folder. Trident "
"requires MUI."
)
)
(set #copytools "Copying Tools...\n")
(set #copytools_help
(cat "\n"
"There are several shell tools that will be installed in your C: "
"directory. Except for PsdLoadModule, none of these are manadatory. "
"Have a look in the manual about their usage.\n\n"
"PsdLoadModule is written by Torbjörn Andersson and included with "
"friendly permission."
)
)
(set #copyromtag "Copying RomTag Installer...\n")
(set #copyromtag_help
(cat "\n"
"Poseidon can be installed reset-proof, so that is already available "
"in the boot menu. This is a small shell script that will both install "
"or uninstall Poseidon residently."
)
)
(set #copystackloader "Copying initial config...\n")
(set #copystackloader_help
(cat "\n"
"The stack config is saved in an executable file that can be run to "
"load up the stack itself. This config file is normally stored in "
"the ENVARC: directory."
)
)
(set #copydosdriver "Copying example DOSDriver...\n")
(set #copydosdriver_help
(cat "\n"
"This is an example DosDriver mountlist to use with the mass "
"storage class for media containing FAT filesystems."
)
)
(set #copyvhi "Copying Webcam driver for VHI Studio...\n")
(set #copyvhi_help
(cat "\n"
"A driver for PenCam cameras for VHI Studio is included in this "
"package and will be installed in LIBS:VHI/"
)
)
(set #askstartonboot "Do you want Poseidon to be started automatically on bootup?\n")
(set #askstartonboot_help
(cat "\n"
"This will just add a line to your user-startup, that will run the "
"PsdStackloader program that must be in ENVARC: for this purpose. "
"This is not mandatory. You can also decide to startup the stack "
"by manually using the Trident GUI."
)
)
(set #createconfig
(cat "\n"
"Do you want to initially start the USB stack and create a default "
"configuration? Otherwise an empty configuration file is copied."
)
)
(set #createconfig_help
(cat "\n"
"Poseidon requires only two things to initially start off. The "
"first thing is the to be used hardware driver, the second the "
"class drivers to add to the system. You now have the option "
"to boot up the stack with the drivers in DEVS:USBHardware "
"and the classes in SYS:Classes/USB. However, if something "
"goes wrong, the installation probably will be aborted.\n\n"
"If you don't want to create this easy-startup configuration "
"file, an empty default config is copied."
)
)
(set #addstartup "Adding the PsdStackloader to your User-Startup-Sequence...\n")
(set #copyinput "Copying new input.device...\n")
(set #addinputload
(cat "\n"
"Adding loading of new input.device to startup-sequence...\n\n"
"Please reboot after installation for the new input.device to "
"become active."
)
)
(set #copyinput_help
(cat "\n"
"The old input.device is not capable of handling more than one "
"keyboard and mouse. Several hacking and patching would have been "
"required to ensure that USB mice and keyboards work 100% compatible.\n\n"
"I've decided to go another way. Ralph Schmidt has been so kind and "
"provided me with the source code of the input.device for MorphOS. "
"I made a 68k version and added the required missing features. "
"Without this new input.device you won't be able to use keyrepeat on "
"keyboards and some (especially MUI!) programs will have problems "
"with USB mice and tablets. The input device has to be installed "
"as a RomTag before the first reboot (normally done by SetPatch).\n\n"
"A PsdLoadModule instruction will added to your startup-sequence "
"as first line."
)
)
)
)
;--------------------------------------------------------------------------
; German Installer Strings
;--------------------------------------------------------------------------
(if (= @language "deutsch")
(
(set #lang 2)
(set #suffix "_D")
(set @default-dest "auf der Festplatte verstreut")
(set #licence "Lizenz.txt")
(set #ioerror "Leider ist ein Fehler während der Installation aufgetreten. Bitte diesen an mich melden!\n\nDanke!")
(set #updateinstaller
(cat "\n"
"Ich möchte Sie nur kurz folgendes wissen lassen: Die Escom AG hat eine neue Version "
"des Installer-Programms veröffentlicht.\n\nVersion 43.3 kann im Aminet unter "
"/util/misc/Installer-43_3.lha gefunden werden.\n\n"
"Sofern möglich, sollten Sie sich die neue Version besorgen, besonders wenn Sie auf "
"Probleme während der Installation stoßen."
)
)
(set #lhaerr
(cat
"Leider konnten die Installationsdaten nicht entpackt werden!\n"
"Bitte installieren Sie das Programm Lha oder LhEX."
)
)
(set #intro
(cat "\n"
("Willkommen zur Installation des\nPoseidon USB Stack V%d.%d\n"
(getversion (tackon #instdatadir "Libs/poseidon.library")))
"von Chris Hodges <hodges@in.tum.de>"
"\n\nBitte lesen Sie die Lizenzvereinbarungen, bevor Sie weitermachen.\n"
"Durch die Fortsetzung der Installation stimmen Sie den Vereinbarungen zu!\n\n"
)
)
(set #extro
(cat "\n"
"Alle Poseidon Dateien wurden installiert. Viel Spaß!\n\n"
"Das erste, was Sie machen sollten, ist die Anleitung zu lesen (im HELP: Verzeichnis). "
"Danach können Sie Trident laden, das im Ihrem Voreinsteller-Verzeichnis liegt."
)
)
(set #copybonus
(cat "\n"
"Es gibt einiges Extramaterial im \"Extra\"-Verzeichnis, wie z.B. "
"fat95 von Torsten Jager, MasonIcons von Martin Merz und das "
"original LoadModule Archiv von Torbjörn Andersson. Die Beigabe dieser Archive "
"erfolgt mit Genehmigung. "
"ACHTUNG: Das Material wird 'so-wie-es-ist' mitgeliefert und weder die Autoren "
"noch ich geben irgendwelche Garantien auf dieses.\n\n"
"Wollen Sie diese Extra-Dateien jetzt entpacken?"
)
)
(set #copybonus_help "Das ist alles optional. Sie können es auch später entpacken.")
(set #copybonusdir "Wählen Sie das Zielverzeichnis für die Bonusarchive (bevorzugt RAM:):")
(set #copybonusdir_help "Das ist der Ort, in den die Archive entpackt werden.")
(set #askmorphos "Wollen Sie die PPC native Binaries für MorphOS mitinstallieren?")
(set #askmorphos_help "Falls Ihr System nicht unter MorphOS läuft, können Sie getrost darauf verzichten.")
(set #copymainlib "Kopiere die Poseidon Hauptbibliothek...\n")
(set #copymainlib_help "\bDas ist die Hauptbibliothek des Poseidon Stacks. Ohne diese läuft gar nichts!")
(set #copyhwdrivers "Wählen Sie aus, welche USB Hardwaretreiber Sie installieren wollen:\n")
(set #copyhwdrivers_help
(cat "\n"
"Dies sind die hardwareabhängingen Treiber für die verfügbaren USB Controller chips. "
"Wählen Sie Ihren Hardwarekontroller. Poseidon funktioniert nicht ohne den richtigen "
"Hardwaretreiber."
)
)
(set #copyclasses "Wählen Sie die USB Klassentreiber aus, die Sie installieren wollen:\n")
(set #copyclasses_help
(cat "\n"
"Klassentreiber sind der Teil der Software, die automatisch die Funktionen eines "
"USB Gerätes verfügbar machen. Wenn Sie nicht wissen, welche Geräte welche Klassentreiber "
"benötigen, kopieren Sie einfach alle; es kann nichts schiefgehen."
)
)
(set #copydocs "Kopiere Handbuch...\n")
(set #copydocs_help
(cat "\n"
"Nachdem es kein eigentliches Installationsverzeichnis gibt, wird die Anleitung im "
"HELP: Verzeichnis installiert."
)
)
(set #copygui "Kopiere Trident (GUI)...\n")
(set #copygui_help
(cat "\n"
"Trident ist die graphische Benutzeroberfläche, die es Ihnen erlaubt, Ihr USB System "
"zu konfigurieren. Ein guter Platz für dieses Programm ist das Voreinsteller-Verzeichnis "
"(SYS:Prefs). Trident benötigt MUI."
)
)
(set #copytools "Kopiere weitere Hilfsprogramme...\n")
(set #copytools_help
(cat "\n"
"Es gibt einige Shellprogramme, die in Ihrem C: Verzeichnis installiert werden. "
"Mit Ausnahme von PsdLoadModule sind keine dieser Dateien obligatorisch. "
"Werfen Sie einen Blick in die Anleitung über ihre Benutzung.\n\n"
"PsdLoadModule ist ein Programm von Torbjörn Andersson, das mit freundlicher Genehmigung "
"beilegt wurde."
)
)
(set #copyromtag "Kopiere RomTag Installationsprogramm...\n")
(set #copyromtag_help
(cat "\n"
"Poseidon kann resetfest eingebunden werden, so dass USB Geräte bereits im Bootmenü "
"verfügbar sind. Dieses kleine Shell-Script erlaubt es, Poseidon sowohl resetfest zu "
"machen als auch wieder zu entfernen."
)
)
(set #copystackloader "Kopiere Ausgangskonfiguration...\n")
(set #copystackloader_help
(cat "\n"
"Die Konfiguration des Stacks wird in einem ausführbaren Programm gespeichert, "
"welches benutzt werden kann, um den Stack selbst zu starten. Diese Konfigurationsdatei "
"wird normalerweise im ENVARC:-Verzeichnis gespeichert."
)
)
(set #copydosdriver "Kopiere Beispiel-DOSDriver...\n")
(set #copydosdriver_help
(cat "\n"
"Es handelt sich hierbei um eine beispielhafte DOSDriver Mountliste, die man zusammen mit "
"der Mass Storage Klasse verwenden kann, um FAT formatierte Medien anzumelden."
)
)
(set #copyvhi "Kopiere Treiber für Webcams für VHI Studio...\n")
(set #copyvhi_help
(cat "\n"
"Es liegt ein Treiber für Kameras der PenCam Serie bei. "
"Dieser wird in LIBS:VHI/ installiert werden."
)
)
(set #askstartonboot "Wollen Sie, dass Poseidon automatisch beim Bootvorgang geladen wird?")
(set #askstartonboot_help
(cat "\n"
"Dadurch wird nur eine Zeile zu Ihrer User-Startup-Datei hinzugefügt, die das "
"PsdStackloader Programm aufruft, das sich zu diesem Zweck in ENVARC: befinden muss. "
"Das ist nicht zwingend. Sie können auch den Stack per Hand starten, indem Sie die "
"graphische Benutzeroberfläche Trident starten."
)
)
(set #createconfig
(cat "\n"
"Wollen Sie den USB Stack jetzt starten und eine automatische Konfiguration erzeugen? "
"Andernfalls wird nur eine leere Konfigurationsdatei kopiert."
)
)
(set #createconfig_help
(cat "\n"
"Poseidon benötigt nur zwei Dinge, um loslaufen zu können. Beim ersten handelt es sich "
"um den verwendeten Hardwaretreiber, das zweite betrifft die Klassentreiber, die dem "
"System hinzugefügt werden sollen. Sie haben nun die Option, den Stack mit den "
"Hardwaretreibern in DEVS:USBHardware und den Klassen in SYS:Classes/USB zu "
"starten. Falls jedoch irgendetwas schiefläuft, wird die Installation wohl "
"abgebrochen werden.\n\nWenn Sie nicht wollen, dass diese Einfach-Loslegen "
"Startkonfiguration erzeugt wird, so wird nur eine leere Konfiguration "
"kopiert."
)
)
(set #addstartup "Füge den PsdStackloader zu Ihrer User-Startup-Sequence hinzu...\n")
(set #copyinput "Kopiere das neue input.device...\n")
(set #addinputload
(cat "\n"
"Ergänze das Laden des neuen Input-Device zur Startup-Sequence...\n\n"
"Bitte starten Sie das System nach der Installation neu, um das neue "
"input.device zu aktivieren.\n"
)
)
(set #copyinput_help
(cat "\n"
"Das alte input.device ist unfähig, mehr als eine Tastatur und Maus zu verwalten. "
"Mehrere Hacks und Patches wären notwendig gewesen, damit USB Mäuse und Tastaturen "
"100% kompatible gewesen wären. Stattdessen habe ich mich für einen anderen Weg "
"entschieden. Ralph Schmidt war so freundlich und hat mir den Sourcecode des "
"input.device von MorphOS zur Verfügung gestellt. Ich erstellte eine 68K Version "
"und ergänzte die fehlenden Features. Ohne dieses neue input.device werden Sie "
"keine Tastenwiederholung auf Tastaturen haben und einige Programme (speziell MUI) "
"werden mit USB Mäusen und Tabletts ein paar Probleme machen. "
"Das input.device muss als RomTag reset-fest eingebunden werden und zwar "
"am besten vor SetPatch, damit nur ein Reboot nötig ist.\n\n"
"Eine PsdLoadModule Anweisung wird als erste Zeile zu Ihrer Startup-Sequence "
"hinzugefügt werden."
)
)
)
)
;----------------------------------------------------------------------
; Spanish Installer strings 1.0 (05.09.03)
; by Dámaso Domínguez <amidde@arrakis.es>
;----------------------------------------------------------------------
(if (= @language "español")
(
(set #lang 3)
(set #suffix "_E")
(set @default-dest "elegido")
(set #licence "Licencia.txt")
(set #ioerror "Se ha producido un error durante la instalación, así que, por favor, infórmeme sobre él.\n\nGracias por anticipado.")
(set #updateinstaller
(cat "\n"
"Debo informarle que ESCOM AG ha lanzado una nueva revisión del programa instalador."
"\n\nLa versión 43.3 puede encontrarla en Aminet en:\n\n/util/misc/Installer-43_3.lha\n\n"
"Debería actualizarla lo antes posible, especialmente si durante la instalación de este paquete tiene problemas."
)
)
(set #lhaerr
(cat
"Lo siento, pero ¡no puedo deshacer los archivos/paquetes!\n"
"Por favor, instale Lha / LhEX en su sistema."
)
)
(set #intro
(cat "\n"
("Bienvenido al programa de instalación de\nla pila USB Poseidon v%d.%d\n"
(getversion (tackon #instdatadir "Libs/poseidon.library")))
"de Chris Hodges <hodges@in.tum.de>"
"\n\nPor favor, lea las condiciones de la licencia antes de proceder.\n"
"¡Continuar con el proceso de instalación implica que ha leído\ny aceptado las condiciones de dicha licencia!\n\n"
)
)
(set #extro
(cat "\n"
"Todos los ficheros del paquete Poseidon han sido instalados. ¡Que lo disfrute!\n\n"
"Lo primero que debe hacer es leer el manual (ubicado en el directorio asignado \"HELP:\"). Después "
"de esto, ponga en marcha la interfaz \"Trident\" que encontrará en el cajón \"Prefs\" de su disco del sistema."
)
)
(set #copybonus
(cat "\n"
"Se incluye cierto material de bonificación en el cajón \"Extra\", como es el paquete "
"\"fat95\" de Torsten Jager, la colección \"MasonIcons\" de Martin Merz y el original "
"paquete \"LoadModule\" de Torbjörn Andersson. Todos los archivos han sido incluidos con autorización. "
"NOTA: Este material extra incluido se suministra \"tal cual\" y ni sus autores ni yo ofrecemos garantía de ningún tipo.\n\n"
"¿Desea desempaquetar estos ficheros ahora?"
)
)
(set #copybonus_help "Este paso es opcional. También puede desempaquetar/descomprimir los archivos más tarde, si lo desea.")
(set #copybonusdir "Elija el directorio de destino (preferiblemente \"RAM:\"):")
(set #copybonusdir_help "Ésta es la ubicación en la que serán desempaquetados los ficheros extra.")
(set #askmorphos "¿Desea instalar también los binarios PPC nativos para MorphOS?")
(set #askmorphos_help "Si su sistema no está ejecutando MorphOS, puede obviar esta parte.")
(set #copymainlib "Copiando la biblioteca principal de Poseidon...\n")
(set #copymainlib_help "\nÉsta es la biblioteca principal de la pila Poseidon. Sin ella, nada funcionará.")
(set #copyhwdrivers "Elija los controladores de la(s) tarjeta(s) USB que desea instalar:\n")
(set #copyhwdrivers_help
(cat "\n"
"Hay controladores USB dependientes de la circuitería (tarjeta). "
" Elija el correcto o Poseidon no funcionará."
)
)
(set #copyclasses "Elija los gestores de las clases USB que desea instalar:\n")
(set #copyclasses_help
(cat "\n"
"Los gestores de clases son elementos logiciales que automáticamente "
"activan prestaciones de los dispositivos que conecte a través de "
"la interfaz USB. Si no sabe los que necesitará, basta con que los "
"copie todos... en principio, no hay peligro alguno."
)
)
(set #copydocs "Copiando el manual...\n")
(set #copydocs_help
(cat "\n"
"Puesto que no hay actualmente un directorio de instalación, "
"la documentación será copiada en su directorio asignado \"HELP:\"."
)
)
(set #copygui "Copiando la interfaz gráfica \"Trident\"...\n")
(set #copygui_help
(cat "\n"
"\"Trident\" es una interfaz gráfica para el usuario que le permitirá configurar sus preferencias USB. "
"Un buen lugar para guardar este programa es su cajón \"Prefs\"."
"Este programa requiere tener instalado el sistema gráfico MUI."
)
)
(set #copytools "Copiando las herramientas...\n")
(set #copytools_help
(cat "\n"
"Hay varias herramientas ejecutables desde el CLI/Shell que serán instaladas en su directorio asignado \"C:\". "
"Excepto en el caso de \"PsdLoadModule\", ninguna de ellas es obligatoria. "
"Consulte el manual sobre su modo de empleo.\n\n"
"\"PsdLoadModule\" ha sido escrita por Torbjörn Andersson y es incluida con su amable autorización."
)
)
(set #copyromtag "Copiando el instalador \"RomTag\"...\n")
(set #copyromtag_help
(cat "\n"
"Poseidon puede ser instalado para que resista el reinicio del sistema, "
"de manera que ya se encuentre disponible durante la fase inicial del "
"arranque de su equipo. Éste es un pequeño guión CLI/Shell que dejará "
"residente Poseidon (o lo eliminará de la lista de programas a ejecutar durante el reinicio)."
)
)
(set #copystackloader "Copiando la configuración inicial...\n")
(set #copystackloader_help
(cat "\n"
"La configuración de la pila es guardada en un fichero ejecutable que "
"puede ser puesto en marcha al cargar la propia pila. Este fichero de "
"configuración/preferencias está almacenado normalmente en el directorio "
"asignado \"ENVARC:\"."
)
)
(set #copydosdriver "Copiando el dispositivo de ejemplo en \"DOSDriver\"...\n")
(set #copydosdriver_help
(cat "\n"
"Es un ejemplo de un fichero de montaje del sistema operativo "
"para utilizar con la clase de almacenamiento masivo para medios que contengan sistemas de ficheros FAT."
)
)
(set #copyvhi "Copiando el gestor \"Webcam\" para \"VHI Studio\"...\n")
(set #copyvhi_help
(cat "\n"
"Un gestor para gestionar cámaras PenCam a través del programa "
"\"VHI Studio\" está incluido en este paquete y será instalado "
"en \"LIBS:VHI/\"."
)
)
(set #askstartonboot "¿Desea que Poseidon se ponga en marcha automáticamente durante el arranque del sistema?\n")
(set #askstartonboot_help
(cat "\n"
"De contestar afirmativamente se añadirá una línea en su fichero "
"\"user-startup\", que pondrá en marcha el programa \"PsdStackloader\" "
"ubicado para este propósito en el directorio asignado \"ENVARC:\". "
"No es obligatorio: podría decidir poner en marcha la pila USB manualmente "
"utilizando la interfaz gráfica \"Trident\"."
)
)
(set #createconfig
(cat "\n"
"¿Desea ejecutar inicialmente la pila USB y crear un fichero "
"de configuración/preferencias por defecto? De no hacerlo se "
"copiará uno vacío."
)
)
(set #createconfig_help
(cat "\n"
"Poseidon sólo requiere dos cosas inicialmente: la primera es que "
"se defina el controlador correspondiente a la circuitería USB disponible "
"y la segunda es qué gestores de clases deben añadirse al sistema. "
"Ahora dispone de la opción de poner en marcha la pila con los controladores "
"disponibles en el directorio \"DEVS:USBHardware\" y las clases disponibles "
"en \"SYS:Clases/USB\". Sin embargo, si algo fallase la instalación "
"probablemente sería abortada.\n\n"
"Si no quiere crear este fácil fichero de configuración de arranque, "
"se copiará en su lugar uno por defecto vacío."
)
)
(set #addstartup "Añadiendo la ejecución de \"PsdStackloader\" a su fichero \"User-Startup\"...\n")
(set #copyinput "Copiando el nuevo dispositivo \"input.device\"...\n")
(set #addinputload
(cat "\n"
"Añadiendo la carga del nuevo dispositivo \"input.device\" al fichero \"startup-sequence\"...\n\n"
"Por favor, reinicie el sistema al terminar la instalación para que este nuevo dispositivo se active."
)
)
(set #copyinput_help
(cat "\n"
"El antiguo dispositivo \"input.device\" no es capaz de manejar más de un ratón/teclado. "
"Se ha requerido forzar el código y varios parches para asegurar que los ratones y teclados USB "
"sean 100% compatibles.\n\n"
"He decidido tomar otra vía. Ralph Schmidt ha sido tan amable que "
"me ha suministrado el código fuente del dispositivo \"input.device\" para MorphOS. "
"He creado una versión 68k y he añadido las prestaciones que faltaban. "
"Sin este nuevo dispositivo, los teclados no dispondrían de la prestación \"repetición de teclas\" "
"y algunos programas (¡especialmente el MUI!) tendrían problemas "
"con los ratones y tabletas USB. El dispositivo de entrada de datos ha sido instalado "
"como una entrada residente a través de \"RomTag\" de manera que esté disponible "
"inmediatamente después del primer reinicio (que normalmente se realiza a través de SetPatch).\n\n"
"Se añadirá una entrada que ejecuta el programa \"PsdLoadModule\", en la primera línea de su fichero \"startup-sequence\"."
)
)
)
)
;--------------------------------------------------------------------------
; Check for new installer (code supplied by RobR)
;--------------------------------------------------------------------------
(set InstallerVer 0)
(set vernum1 @installer-version)
(set ver1 (/ vernum1 65536))
(set rev1 (- vernum1 (* ver1 65536)))
(set InstallerVer (cat ver1 "." rev1))
(set current_installer "43.3")
(if (< InstallerVer current_installer)
(
(message #updateinstaller)
)
)
;--------------------------------------------------------------------------
; Is this a packed version?
;--------------------------------------------------------------------------
(set #cleanupinst 0)
(if (exists "InstallData.lha")
(
(if (exists "C:Lha")
(
(run "Lha -q x InstallData.lha T:" (safe))
) (
(if (exists "C:LhEX")
(
(run "LhEX -qfw=T: x InstallData.lha" (safe))
) (
(message #lhaerr)
(exit)
)
)
)
)
(set #instdatadir "T:InstallData")
(set #cleanupinst 1)
)
)
;--------------------------------------------------------------------------
; Copy the files.
;--------------------------------------------------------------------------
(run ("Run >NIL: SYS:Utilities/Multiview %s" #licence) (safe))
(message #intro)
(complete 0)
(if
(and
(exists "PoseidonMOS.lha")
#cleanupinst
)
(
(if
(askbool
(prompt #askmorphos)
(help #askmorphos_help)
(default 0)
)
(
(if (exists "C:Lha")
(
(run "Lha -q x PoseidonMOS.lha T:" (safe))
) (
(run "LhEX -qfw=T: x PoseidonMOS.lha" (safe))
)
)
)
)
)
)
(copylib
(prompt #copymainlib)
(help #copymainlib_help)
(source (tackon #instdatadir "Libs/poseidon.library"))
(dest "LIBS:")
(confirm)
)
(if
(exists (tackon #instdatadir "Libs/poseidon.library.elf"))
(
(complete 5)
(copylib
(prompt #copymainlib)
(help #copymainlib_help)
(source (tackon #instdatadir "Libs/poseidon.library.elf"))
(dest "LIBS:")
(confirm)
)
)
)
(complete 10)
(copyfiles
(prompt #copyhwdrivers)
(help #copyhwdrivers_help)
(source (tackon #instdatadir "Devs/USBHardware"))
(dest "DEVS:USBHardware")
(confirm)
(all)
)
(complete 15)
(if (not (exists "DEVS:USBHardware"))
(
(makedir "DEVS:USBHardware")
)
)
(complete 20)
(copyfiles
(prompt #copyclasses)
(help #copyclasses_help)
(source (tackon #instdatadir "Classes/USB"))
(dest "SYS:Classes/USB")
(confirm)
(all)
)
(complete 30)
(copyfiles
(prompt #copydocs)
(help #copydocs_help)
(source (tackon #instdatadir (cat "Docs/Poseidon" #suffix ".guide")))
(dest "HELP:")
(if (not (exists "HELP:Poseidon.guide.info")) (infos))
(newname "Poseidon.guide")
(noposition)
(confirm)
)
(complete 40)
(copyfiles
(prompt #copygui)
(help #copygui_help)
(source (tackon #instdatadir "Trident"))
(dest "SYS:Prefs")
(if (not (exists "SYS:Prefs/Trident.info")) (infos))
(noposition)
(confirm)
)
(complete 50)
(copyfiles
(prompt #copyromtag)
(help #copyromtag_help)
(source (tackon #instdatadir "PsdRomTag"))
(dest "SYS:Utilities")
(if (not (exists "SYS:Utilities/PsdRomTag.info")) (infos))
(noposition)
(confirm)
)
(complete 55)
(copyfiles
(prompt #copytools)
(help #copytools_help)
(source (tackon #instdatadir "Tools"))
(dest "C:")
(confirm)
(all)
)
(complete 60)
(if (exists "SYS:Storage/DOSDrivers/UMSD/UMSD")
(
(rename "SYS:Storage/DOSDrivers/UMSD" "SYS:Storage/DOSDrivers/UMSDtmp" (safe))
(delete "SYS:Storage/DOSDrivers/UMSD.info" (safe))
(run "C:Rename SYS:Storage/DOSDrivers/UMSDtmp/#? SYS:Storage/DOSDrivers" (safe))
(delete "SYS:Storage/DOSDrivers/UMSDtmp" (safe))
)
)
(complete 61)
(if (not (exists "SYS:Storage/DOSDrivers/UMSD"))
(
(copyfiles
(prompt #copydosdriver)
(help #copydosdriver_help)
(source (tackon #instdatadir "Storage/DOSDrivers/UMSD"))
(dest "SYS:Storage/DOSDrivers")
(if (not (exists "SYS:Storage/DOSDrivers/UMSD.info")) (infos))
(confirm)
)
)
)
(complete 62)
(if (not (exists "SYS:Storage/DOSDrivers/UMSD.info"))
(
(copyfiles
(source (tackon #instdatadir "Storage/DOSDrivers/UMSD.info"))
(dest "SYS:Storage/DOSDrivers")
)
)
)
(complete 65)
(if (not (exists "SYS:Storage/DOSDrivers/UPAR"))
(
(copyfiles
(prompt #copydosdriver)
(help #copydosdriver_help)
(source (tackon #instdatadir "Storage/DOSDrivers/UPAR"))
(dest "SYS:Storage/DOSDrivers")
(if (not (exists "SYS:Storage/DOSDrivers/UPAR.info")) (infos))
(confirm)
)
)
)
(complete 67)
(if (not (exists "SYS:Storage/DOSDrivers/UPAR.info"))
(
(copyfiles
(source (tackon #instdatadir "Storage/DOSDrivers/UPAR.info"))
(dest "SYS:Storage/DOSDrivers")
)
)
)
(complete 70)
(copyfiles
(prompt #copyvhi)
(help #copyvhi_help)
(source (tackon #instdatadir "Libs/VHI"))
(dest "LIBS:VHI")
(confirm)
(all)
)
(complete 75)
(if (not (exists "ENVARC:PsdStackloader"))
(
(if
(askbool
(prompt #createconfig)
(help #createconfig_help)
(default 0)
)
(
(run "Echo >T:AddHW \"FailAt 21\"")
(run
(cat
"List >>T:AddHW FILES DEVS:USBHardware/#?.device#? LFORMAT \""
(tackon #instdatadir "Tools/AddUSBHardware %p%n ALL\"")
)
)
(run "Execute T:AddHW")
(delete "T:AddHW")
(run (tackon #instdatadir "Tools/AddUSBClasses"))
(run (tackon #instdatadir "Trident NOGUI SAVE"))
)
(
(copyfiles
(prompt #copystackloader)
(help #copystackloader_help)
(source (tackon #instdatadir "PsdStackloader"))
(dest "ENVARC:")
)
)
)
)
)
(complete 80)
(if
(askbool
(prompt #askstartonboot)
(help #askstartonboot_help)
(default 0)
)
(
(startup "Poseidon"
(prompt #addstartup)
(help #askstartonboot_help)
(command "ENVARC:PsdStackloader")
)
)
)
(complete 85)
(copyfiles
(prompt #copyinput)
(help #copyinput_help)
(source (tackon #instdatadir "Devs/input.device"))
(dest "DEVS:")
)
(if
(and
(= 5
(run "Search S:Startup-Sequence PATTERN input.device QUIET QUICK"
(safe)
)
)
(and
(exists "C:PsdLoadModule")
(exists "DEVS:input.device")
)
)
(
(run "Echo >T:NewStartup \"PsdLoadModule DEVS:input.device QUIET ;Added by Poseidon-Installer\""
(safe)
)
(run "Type >>T:NewStartup S:Startup-Sequence"
(safe)
)
(copyfiles
(prompt #addinputload)
(help #copyinput_help)
(source "T:NewStartup")
(dest "S:")
(newname "S:Startup-Sequence")
(confirm "average")
)
(delete "T:NewStartup" (safe))
(run "C:PsdLoadModule DEVS:input.device QUIET")
)
)
(complete 90)
(if
(askbool
(prompt #copybonus)
(help #copybonus_help)
(default 1)
)
(
(set #bonusdir
(tackon
(askdir
(prompt #copybonusdir)
(help #copybonusdir_help)
(default "RAM:")
)
""
)
)
(if (exists "C:Lha")
(
(run ("Lha -q x Extra/#?.lha \"%s\"" #bonusdir))
) (
(run ("LhEX -qfw=%s x Extra/fat95.lha" #bonusdir))
(run ("LhEX -qfw=%s x Extra/LoadModule11.lha" #bonusdir))
(run ("LhEX -qfw=%s x Extra/GuidoIcons.lha" #bonusdir))
(run ("LhEX -qfw=%s x Extra/MasonIcons.lha" #bonusdir))
)
)
)
)
(complete 100)
(message #extro)
(if #cleanupinst
(
(run
(cat "Delete " #instdatadir " ALL QUIET FORCE")
)
)
)
;--------------------------------------------------------------------------
; Installation successful!
;--------------------------------------------------------------------------
(exit)